home *** CD-ROM | disk | FTP | other *** search
- global gHFCatLastLine
-
- on mouseDown
- if the doubleClick and (the mouseLine <> -1) then
- dontPassEvent()
- exit
- end if
- set gHFCatLastLine to -1
- set mLine to the mouseLine
- if mLine = -1 then
- exit
- else
- set executeOnce to 0
- repeat while the stillDown or (executeOnce = 0)
- set mLine to the mouseLine
- if (mLine <> gHFCatLastLine) and (mLine <> -1) then
- set the foreColor of line gHFCatLastLine of field "Cat List" to 255
- set the foreColor of line mLine of field "Cat List" to 251
- set gHFCatLastLine to mLine
- set executeOnce to 1
- end if
- end repeat
- end if
- set the foreColor of line gHFCatLastLine of field "Cat List" to 255
- set vText to line gHFCatLastLine of field "Cat List"
- addDelCategory(vText)
- end
-